home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 18
/
CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso
/
CUCD
/
Graphics
/
MagnifiCAD
/
ARexx
/
Get2.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-11-19
|
646b
|
47 lines
/*
** Get2.rexx
**
** Description: A test of the 'Get' command,
** showing some of the parameters.
**
** Written by: Anders Granli
**
** Date: 11.10.96
*/
OPTIONS RESULTS
address 'MAGNIFICAD'
SAY
GETATTR GRIDTYPE
gridtype = RESULT
SAY "Gridtype: " gridtype
GETATTR HATCH
hatch = RESULT
SAY "Hatch:" hatch
GETATTR LEVEL
level = RESULT
SAY "Level: " level
GETATTR COLOR
color = RESULT
SAY "Color:" color
GETATTR COLORDEPTH
colordepth = RESULT
SAY "Colordepth:" colordepth
GETATTR COPY
copy = RESULT
SAY "Copy:" copy
GETATTR PRINTBORDER
printborder = RESULT
SAY "PrintBorder:" printborder
SAY